Skip to content

🚀 Release 1.123.22#26235

Merged
Matsuuu merged 1 commit intorelease/1.123.22from
release-pr/1.123.22
Feb 25, 2026
Merged

🚀 Release 1.123.22#26235
Matsuuu merged 1 commit intorelease/1.123.22from
release-pr/1.123.22

Conversation

@n8n-assistant
Copy link
Contributor

@n8n-assistant n8n-assistant bot commented Feb 25, 2026

1.123.22 (2026-02-25)

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 19 files

Architecture diagram
sequenceDiagram
    participant UI as Editor UI (frontend/editor-ui)
    participant API as Backend API (packages/cli)
    participant Core as Core Engine (n8n-core)
    participant DB as Database (@n8n/db)
    participant TR as Task Runner (@n8n/task-runner)

    Note over UI,TR: Workflow Execution & Data Persistence Flow

    UI->>API: POST /workflow/run (Trigger Execution)
    API->>DB: Fetch Workflow & Credentials
    DB-->>API: Workflow Definition

    API->>Core: initializeExecution(workflowData)
    
    loop For each Node in Workflow
        Core->>Core: Resolve Node Parameters (n8n-workflow)
        
        alt Standard Node Execution
            Core->>Core: Execute Internal Logic (n8n-nodes-base)
        else Isolated Execution (e.g., Code Node / AI)
            Note over Core,TR: CHANGED: Versioned Task Delegation
            Core->>TR: POST /run-task (Isolated Sandbox)
            TR->>TR: Execute JS/Python/AI Logic
            TR-->>Core: Return Node Output
        end

        Core->>DB: CHANGED: Update Execution Progress
    end

    Core->>DB: Finalize Execution Record
    Core-->>API: Execution Complete
    API-->>UI: 200 OK (Execution Results)

    Note over UI,API: Real-time updates via WebSockets (not shown)
Loading

@blacksmith-sh

This comment has been minimized.

@Matsuuu Matsuuu merged commit 49d7e16 into release/1.123.22 Feb 25, 2026
47 of 48 checks passed
@Matsuuu Matsuuu deleted the release-pr/1.123.22 branch February 25, 2026 11:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant